home *** CD-ROM | disk | FTP | other *** search
/ C/C++ Users Group Library 1996 July / C-C++ Users Group Library July 1996.iso / listings / v_12_05 / saks / xrt.h < prev   
C/C++ Source or Header  |  1994-03-08  |  384b  |  29 lines

  1. Listing 2 - xrt class definition
  2.  
  3. //
  4. // xrt.h - cross-reference table interface
  5. //
  6. #ifndef XRT_H_INCLUDED
  7. #define XRT_H_INCLUDED
  8.  
  9. #include "lns.h"
  10.  
  11. class treenode;
  12.  
  13. class xrt
  14.     {
  15. public:
  16.     xrt();
  17.     ~xrt();
  18.     void add(const char *w, unsigned n);
  19.     void print();
  20. private:
  21.     treenode *root;
  22.     };
  23.  
  24. inline xrt::xrt() : root(0)
  25.     {
  26.     }
  27.  
  28. #endif
  29.